home *** CD-ROM | disk | FTP | other *** search
- /*
-
- File Filter.h
-
- A Filter object responds to requests to open a file. It looks up the appropriate application to use by checking the defaults database.
-
- */
-
- #import <appkit/appkit.h>
-
-
- /* ========================================================================== */
-
-
- @interface Filter : Object
- {
- }
-
-
- - (BOOL) appAcceptsAnotherFile: sender;
- - (int) app: sender openFile: (const char *) filename
- type: (const char *) aType;
-
- @end